/*首页banner样式*/
.slick-banner {
    position: relative;
    .slick-arrow {
        position: absolute;
        z-index: 99;
        width: 38px;
        height: 60px;
        margin-top: -30px;
        top: 50%;
        background-repeat: no-repeat;
        background-size: auto;
        background-image: url(../images/xyin-banner-jt.png);
        cursor: pointer;
        outline:none;
        border:none;
        font-size:0;
        transition: all .5s;
        background-color: rgba(50,120,127,.1);
        &.slick-prev {
            left: toper(0,1920);
            background-position: 0 0;
            border-top-right-radius: 30px;
            border-bottom-right-radius: 30px;
        }
        &.slick-next {
            right: toper(0,1920);
            background-position: -52px 0;
            border-top-left-radius: 30px;
            border-bottom-left-radius: 30px;

        }
        &:hover {
            background-color: rgba(50,120,127,.3);
        }
    }
    .slick-dots {
        position: absolute;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 0;
        z-index: 9;
        bottom: 40px;
        li {
            display: inline-block;
            margin:  0 5px;
            width: 16px;
            height: 16px;
            background: #efefef;
            cursor: pointer;
            border-radius: 50%;
            button {
                background: none;
                outline:none;
                border:none;
                font-size:0;
            }
            &.slick-active {
                background: $themecolor;
            }
        }
    }

    .img {
        img {
            width: 100%;
        }
    }
    .slick-con {
        position: relative;
    }
    .wz {
        position: absolute;
        left: 0;
        right: 0;
        z-index: 9;
        top: 50%;
        text-align: center;
        color: #fff;
        .wz1 {
            font-size: 60px;
            margin-bottom: 10px;
        }
        .wz2 {
            font-size: 30px;
            margin-bottom: 55px;
        }
        .wz-more {
            display: inline-block;
            padding: 15px 25px;
            font-size: 16px;
            color: #fff;
            border: 2px solid #fff;
            font-family: Arial;
            transition: all .5s;
            &:hover {
                background: $themecolor;
                border-color: $themecolor;
                text-decoration: none;
            }
        }
    }
    @media (max-width: 1200px) {
        .wz {
            .wz1 {
                font-size: 40px;
                margin-bottom: 10px;
            }
            .wz2 {
                font-size: 20px;
                margin-bottom: 30px;
            }
            .wz-more {
                padding: 10px 25px;
                font-size: 12px;
                border: 1px solid #fff;
            }
        }
    }
}

#mob-banner {
    display: none;
}
@media (max-width:768px) {
    #pc-banner {
        display: none;
    }
    #mob-banner {
        display: block;
    }
}